home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr28 / 3c509drv.zip / MENU.BAT < prev    next >
DOS Batch File  |  1993-06-01  |  1KB  |  71 lines

  1. echo off
  2. REM %%VER EtherLink III Drivers Installation program v2.0a
  3. if /%mono%==/ goto chkparm
  4. if %mono%==y goto setmono
  5. :chkparm
  6. set mono=n
  7. if /%1==/ goto chkvideo
  8. if %1==/m goto setmono
  9. if not %1==/M goto chkvideo
  10. :setmono
  11. set mono=y
  12. cls
  13. goto contin
  14.  
  15. :chkvideo
  16. install\check videocard
  17. if errorlevel 1 goto color
  18. cls
  19. goto contin
  20. :color
  21. install\get b 31
  22. :contin
  23. type main.men
  24. install\flushkey
  25. install\echoxy 18 17 Select Option:
  26. install\reply
  27. echo    Please wait . . .
  28. if errorlevel 60 goto inval
  29. if errorlevel 59 goto help
  30. if errorlevel 54 goto inval
  31. if errorlevel 53 goto end
  32. if errorlevel 52 goto info
  33. if errorlevel 51 goto ndis
  34. if errorlevel 50 goto nw
  35. if errorlevel 49 goto diag
  36. if errorlevel 28 goto inval
  37. if errorlevel 27 goto end
  38.  
  39. :inval
  40. install\echoxy 20 17 **** Invalid key, try again. ****
  41. echo 
  42. echo 
  43. echo.
  44. menu
  45.  
  46. :help
  47. type main.hlp
  48. pause
  49. menu
  50.  
  51. :info
  52. cd info
  53. info
  54.  
  55. :diag
  56. cd diag
  57. diag
  58.  
  59. :ndis
  60. cd ndis
  61. ndis
  62.  
  63. :nw
  64. cd netware
  65. netware
  66.  
  67. :end
  68. cls
  69.  
  70.  
  71.